home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / lang / sofa.lha / sofa / smalleiffel / lib_se / short.e < prev    next >
Text File  |  2000-03-25  |  8KB  |  273 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr
  4. --                       http://SmallEiffel.loria.fr
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License
  11. -- for  more  details.  You  should  have  received a copy of the GNU General
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. class SHORT
  17.    --
  18.    -- The `short' command.
  19.    --
  20.  
  21. inherit COMMAND_FLAGS;
  22.  
  23. creation make
  24.  
  25. feature {NONE}
  26.  
  27.    command_name: STRING is "short";
  28.  
  29.    format: STRING;
  30.  
  31.    parents: FIXED_ARRAY[BASE_CLASS] is
  32.          -- From `run_control..root_class' up to ANY included.
  33.       once
  34.          !!Result.with_capacity(4);
  35.       end;
  36.  
  37.    run_class: RUN_CLASS;
  38.  
  39.    rf_list: FIXED_ARRAY[RUN_FEATURE] is
  40.       once
  41.          !!Result.with_capacity(256);
  42.       end;
  43.  
  44.    sort: BOOLEAN;
  45.  
  46.    short: BOOLEAN;
  47.  
  48.    make is
  49.       local
  50.          bc: BASE_CLASS;
  51.          i: INTEGER;
  52.          ccl: CREATION_CLAUSE_LIST;
  53.       do
  54.          small_eiffel.set_short_flag;
  55.          if argument_count = 0 then
  56.             fatal_bad_usage
  57.          else
  58.             automat;
  59.             if run_control.root_class = Void then
  60.                fatal_bad_usage
  61.             end;
  62.             bc := small_eiffel.load_class(run_control.root_class);
  63.             parents.add_last(bc);
  64.             if not short then
  65.                bc.up_to_any_in(parents);
  66.             end;
  67.             if format = Void then
  68.                format := "plain";
  69.             end;
  70.             -- Prepare data :
  71.             compute_run_class(bc);
  72.             run_class.runnable_class_invariant;
  73.             -- Print the class interface :
  74.             short_print.start(format,bc,run_class);
  75.             ccl := bc.creation_clause_list;
  76.             if ccl = Void or else not ccl.short then
  77.                short_print.hook("hook102");
  78.             end;
  79.             compute_rf_list;
  80.             if sort then
  81.                short_print.hook_or("hook200","feature(s)%N");
  82.                sort_rf_list;
  83.                from
  84.                   i := 0;
  85.                until
  86.                   i > rf_list.upper
  87.                loop
  88.                   short_print.a_run_feature(rf_list.item(i));
  89.                   i := i + 1;
  90.                end;
  91.                short_print.hook("hook201");
  92.             end;
  93.             short_print.finish;
  94.          end;
  95.       end;
  96.  
  97.    automat is
  98.       local
  99.          arg: INTEGER;
  100.          a: STRING;
  101.       do
  102.          from
  103.             arg := 1;
  104.          until
  105.             arg > argument_count
  106.          loop
  107.             a := argument(arg);
  108.             if ("-sort").is_equal(a) then
  109.                sort := true;
  110.             elseif ("-short").is_equal(a) then
  111.                short := true;
  112.             elseif is_flag_case_insensitive(a) then
  113.             elseif is_flag_no_style_warning(a) then
  114.             elseif is_flag_no_warning(a) then
  115.             elseif is_flag_version(a) then
  116.             elseif a.item(1) = '-' then
  117.                a.remove_first(1);
  118.                format := a;
  119.             else
  120.                if a.has_suffix(eiffel_suffix) then
  121.                   a.remove_suffix(eiffel_suffix);
  122.                end;
  123.                if as_bit_n_ref.same_as(a) then
  124.                   a := as_bit_n;
  125.                end;
  126.                run_control.compute_root_class(a);
  127.             end;
  128.             arg := arg + 1;
  129.          end;
  130.       end;
  131.  
  132.    compute_run_class(bc: BASE_CLASS) is
  133.       local
  134.          fgl: FORMAL_GENERIC_LIST;
  135.          bcn: STRING;
  136.          sp: POSITION;
  137.          t, ct: TYPE;
  138.          gl: ARRAY[TYPE];
  139.          i: INTEGER;
  140.          fga: FORMAL_GENERIC_ARG;
  141.       do
  142.          bcn := bc.name.to_string;
  143.          sp := bc.name.start_position;
  144.          fgl := bc.formal_generic_list;
  145.          if as_any = bcn then
  146.             !TYPE_ANY!ct.make(sp);
  147.          elseif as_native_array = bcn then
  148.             !TYPE_CHARACTER!t.make(sp);
  149.             !TYPE_NATIVE_ARRAY!ct.make(sp,t);
  150.          elseif as_array = bcn then
  151.             !TYPE_ANY!t.make(sp);
  152.             !TYPE_ARRAY!ct.make(sp,t);
  153.          elseif as_integer = bcn then
  154.             !TYPE_INTEGER!ct.make(sp);
  155.          elseif as_real = bcn then
  156.             !TYPE_REAL!ct.make(sp);
  157.          elseif as_double = bcn then
  158.             !TYPE_DOUBLE!ct.make(sp);
  159.          elseif as_character = bcn then
  160.             !TYPE_CHARACTER!ct.make(sp);
  161.          elseif as_boolean = bcn then
  162.             !TYPE_BOOLEAN!ct.make(sp);
  163.          elseif as_pointer = bcn then
  164.             !TYPE_POINTER!ct.make(sp);
  165.          elseif as_string = bcn then
  166.             !TYPE_STRING!ct.make(sp);
  167.          elseif fgl /= Void then
  168.             from
  169.                i := 1;
  170.                !!gl.with_capacity(fgl.count,1);
  171.             until
  172.                i > fgl.count
  173.             loop
  174.                fga := fgl.item(i);
  175.                if fga.constraint = Void then
  176.                   !TYPE_ANY!t.make(sp);
  177.                else
  178.                   t := fga.constraint;
  179.                end;
  180.                gl.add_last(t);
  181.                i := i + 1;
  182.             end;
  183.             !TYPE_GENERIC!ct.make(bc.name,gl);
  184.          else
  185.             !TYPE_CLASS!ct.make(bc.name);
  186.          end;
  187.          run_class := ct.run_class;
  188.       end;
  189.  
  190.    compute_rf_list is
  191.       local
  192.          i: INTEGER;
  193.          bc: BASE_CLASS;
  194.          rc: RUN_CLASS;
  195.          fcl: FEATURE_CLAUSE_LIST;
  196.       do
  197.          from
  198.             i := parents.upper;
  199.             rc := run_class;
  200.          until
  201.             i < 0
  202.          loop
  203.             bc := parents.item(i);
  204.             fcl := bc.feature_clause_list;
  205.             if fcl /= Void then
  206.                fcl.for_short(bc.name,sort,rf_list,rc);
  207.             end;
  208.             i := i - 1;
  209.          end;
  210.       end;
  211.  
  212.    sort_rf_list is
  213.       local
  214.          min, max, buble: INTEGER;
  215.          moved: BOOLEAN;
  216.       do
  217.          from
  218.             max := rf_list.upper;
  219.             min := 0;
  220.             moved := true;
  221.          until
  222.             not moved
  223.          loop
  224.             moved := false;
  225.             if max - min > 0 then
  226.                from
  227.                   buble := min + 1;
  228.                until
  229.                   buble > max
  230.                loop
  231.                   if gt(buble - 1,buble) then
  232.                      rf_list.swap(buble - 1,buble);
  233.                      moved := true;
  234.                   end;
  235.                   buble := buble + 1;
  236.                end;
  237.                max := max - 1;
  238.             end;
  239.             if moved and then max - min > 0 then
  240.                from
  241.                   moved := false;
  242.                   buble := max - 1;
  243.                until
  244.                   buble < min
  245.                loop
  246.                   if gt(buble,buble + 1) then
  247.                      rf_list.swap(buble,buble + 1);
  248.                      moved := true;
  249.                   end;
  250.                   buble := buble - 1;
  251.                end;
  252.                min := min + 1;
  253.             end;
  254.          end;
  255.       end;
  256.  
  257.    gt(i,j: INTEGER): BOOLEAN is
  258.       local
  259.          n1, n2: STRING;
  260.       do
  261.          n1 := rf_list.item(i).name.to_key;
  262.          n2 := rf_list.item(j).name.to_key;
  263.          Result :=  n1 > n2;
  264.       end;
  265.  
  266.    fatal_bad_usage is
  267.       do
  268.          system_tools.bad_use_exit(command_name);
  269.       end;
  270.  
  271. end -- SHORT -- The command.
  272.  
  273.